home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / monitor / util / util.doc < prev    next >
Encoding:
Text File  |  1994-10-07  |  2.6 KB  |  76 lines

  1. UTILITY CUSTOM CONTROL
  2. -------------------------
  3.  
  4. DESCRIPTION
  5. ------------
  6. The Util.vbx control provides easy access to the windows resources,
  7. diskspace and memory.  Any time GDI or USER resources drop or raise
  8. an event is fired.  When diskspace or memory change an event is fired.
  9.  
  10. EVENTS AND PROPERTIES OF THE CONTROL
  11. -------------------------------------
  12.  
  13. EVENTS :
  14. --------
  15. There are four events for the UTILITY custom control.
  16.  
  17. Sub Util1_DiskSpaceChange (DiskSpaceFree As Long)
  18. Sub Util1_GdiChange (GdiFree As Integer)
  19. Sub Util1_MemoryChange (MemFree As Long)
  20. Sub Util1_UserChange (UserFree As Integer)
  21.  
  22. All of the events are triggered whenever there is a change in
  23. disk space, gdi or user resources or memory.
  24.  
  25. PROPERTIES
  26. -----------
  27. The custom properties supported by the control are
  28.  
  29. 1. About    :- Creator of control brag box.....
  30. 2. Diskspace    :- Holds the current free diskspace
  31. 3. Gdifree    :- Holds the current GDI RESOURCES IN PERCENT FREE
  32. 4. MemoryFree    :- Holds the maximum amount of memory available
  33. 5. MonitorDisk    :- If TRUE the DiskFree Event will fire on a change
  34. 6. MonitorGdi     :- If TRUE the Gdi Event will fire on a change
  35. 7. MonitorMemory:- If TRUE the Memory Event will fire on a change
  36. 8. MonitorUser    :- If TRUE the User Event will fire on a change
  37. 9. Name        :- The name of the control
  38. 10. Tag        :- Unique reference property
  39. 11. UserFree    :- Holds the current USER RESOURCES IN PERCENT FREE
  40.  
  41. This Utility control was designed for and tested with Visual Basic v3.0 and 
  42. Windows v3.1.  It was written using Borland C++ 4.0 compiler.
  43.  
  44. Copyright Note:
  45.     The Utility control is a preliminary release for what is to 
  46. come down the road.  The full control will show everything you ever
  47. wanted to know about your system.
  48.     Version 1.0 
  49.         Monitor Disk Space
  50.         Monitor Gdi Resources
  51.         Monitor User Resources
  52.         Monitor Memory
  53.     Version x.x // Future Release Wishes
  54.         Monitor Num Lock, Caps Lock and Scroll Lock
  55.         Monitor Ctrl-Break 
  56.         Anything you can think of.........
  57.  
  58. Visual Basic v3.0, Windows v3.1 are copyrights of Microsoft Corp.
  59. Borland C++ 4.0 is a copyright of Borland International.
  60.  
  61.         Please feel free to send suggestions and comments to
  62.         Bill Dotson -  CompuServe ID 73512,3675.
  63.         ATTN: Tom West
  64.  
  65. Note:
  66.     Many Thanks to:
  67.         Vivek Venugopalan - VBX Guru who release the source
  68.                     for INIWIZ.VBX. It taught me the 
  69.                     ropes.
  70.         Bill Dotson      - For letting me have fun creating
  71.                     this program on company time.
  72.         Mike Reed      - For turning me on the VB 3.0 and 
  73.                     pumping me full of confidence when
  74.                     I created my first cheesy program.
  75.  
  76.